body {
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  background-color: #191715;
  ;
}
/* Fullscreen video wrapper */
.video-wrapper {
position: relative;
width: 100%;
height: 100vh;
overflow: hidden;
}

/* Fullscreen video styling */
.fullscreen-video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}
/* Overlay logo */
.video-overlay {
position: absolute;
bottom: 20px;
left: 20px;
width: 240px;
}
.content {
position: relative;
z-index: 1;
padding: 20px;
}
.section-below-video {
margin-top: 15vh;
margin-bottom: 5vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;


color: #fff;
text-align: justify;
padding: 20px;
}
.section-below-video h1 {
font-family: 'Crimson Text', serif;
font-size: 35px;
margin-bottom: 20px;
text-transform: uppercase;
}

.section-below-video a {
font-family: 'Forum', cursive;  font-size: 16px;
color: #fff;
text-decoration: none;
margin: 0 15px;
border-bottom: 1px solid #fff;
transition: color 0.3s ease, border-bottom 0.3s ease;
text-transform: uppercase;
}

.section-below-video a:hover {
color: #CEAA7C;
;
border-bottom: 1px solid #CEAA7C;
}

@media screen and (max-width: 1024px) {
.section-below-video h1 {
  font-family: 'Crimson Text', serif;
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-below-video a {
  font-family: 'Forum', cursive;    font-size: 16px;
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  border-bottom: 1px solid #fff;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  text-transform: uppercase;
}

.section-below-video a:hover {
  color: #CEAA7C;
  border-bottom: 1px solid #CEAA7C;
}
}

@media screen and (max-width: 768px) {
.section-below-video h1 {
  font-family: 'Crimson Text', serif;
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-below-video a {
  font-family: 'Forum', cursive;    font-size: 16px;
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  border-bottom: 1px solid #fff;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  text-transform: uppercase;
}

.section-below-video a:hover {
  color: #CEAA7C;
  border-bottom: 1px solid #CEAA7C;
  text-transform: uppercase;
}
}

@media screen and (max-width: 640px) {
.section-below-video h1 {
  font-family: 'Crimson Text', serif;
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-below-video a {
  font-family: 'Forum', cursive;   font-size: 16px;
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  border-bottom: 1px solid #fff;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  text-transform: uppercase;
}

.section-below-video a:hover {
  color: #CEAA7C;
  border-bottom: 1px solid #CEAA7C;
  text-transform: uppercase;
}
}

/* Carousel */
.carousel-container {
position: relative;
}
.carousel {
margin-left: 1.5vh;
display: flex;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
gap: 10px;
padding: 20px;

scrollbar-width: none; /* Hide scrollbar in Firefox */
}

.carousel::-webkit-scrollbar {
display: none; /* Hide scrollbar in Chrome, Safari, and Edge */
}
.carousel-button {
position: absolute;
top: 43%;
transform: translateY(-50%);
background: rgba(0, 0, 0, 0.5);
color: white;
border: none;
padding: 10px;
cursor: pointer;
z-index: 10;
}

.carousel-button.left {
left: 10px;
}

.carousel-button.right {
right: 10px;
}
.carousel-item {
flex: 0 0 calc(33.33% - 10px);
scroll-snap-align: start;
text-align: center;
color: #fff;
font-family: 'Forum', cursive;
text-decoration: none;
}

.carousel-item img {
width: 100%;
height: auto;

}

.carousel-item h3 {
margin-top: 10px;
font-size: 25px;
font-family: 'Forum', cursive;  font-weight: 100;
text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
.carousel-item {
  flex: 0 0 calc(50% - 10px); /* Two items visible on tablet */
}
.carousel-item h3 {
  margin-top: 10px;
  font-size: 23px;
  font-family: 'Forum', cursive; font-weight: 100;
  text-transform: uppercase;
}
}

@media screen and (max-width: 768px) {
.carousel-item {
  flex: 0 0 calc(50% - 10px); /* Center one item with half items visible on mobile */
}
.carousel-item h3 {
  margin-top: 10px;
  font-size: 15px;
  font-family: 'Forum', cursive;  font-weight: 100;
  text-transform: uppercase;
}

}
/* Header styling */
h1 {
  font-family: 'Crimson Text', serif;
  font-size: 60px;
  font-weight: 100;
}

/* Subheader styling */
h2 {
  font-family: 'Forum', cursive;
  font-size: 30px;
}

/* Body text styling */
p {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 200;
}

a {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 100;
}
/* Responsive styles */
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 45px;
  }
  h2 {
    font-size: 23px;
  }
  p {
    font-size: 18px;
  }
  a {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 40px;
  }
}

/* Navbar container */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 10px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* Left container: Logo and links */
.navbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-grow: 1;
}

/* Logo */
.navbar-logo img {
  height: 40px;
  width: 40px;
}
.navbar-menu img {
  height: 40px;
  width: 40px;
}

.navbar-menu {
  display: none;
}


/* Navbar links */
.navbar-links {
  display: flex;
  gap: 20px;
  flex-grow: 1;
}

.navbar-links a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: normal;
  text-transform: uppercase;
  font-family: 'Crimson Text', serif;
  transition: color 0.3s ease;
}

.navbar-links a:hover {
  color: #CEAA7C;
}

/* Book Now button */
.navbar-button {
  background-color: #ceaa7c;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
  font-family: 'Crimson Text', serif;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.navbar-button:hover {
  background-color: #ffcc99;
  transform: scale(1.05);
}

/* Hamburger menu */
  .hamburger {
    display: none;
    font-size: 25px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    padding-left: 10px;
  }
/* Collapsed menu */
.navbar-links.collapsed {
  display: none;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 100%; /* Aligns perfectly below the navbar */
  left: 0;
  width: 100%; /* Match the navbar width */
  max-width: 80vw; /* Ensure it does not exceed navbar width */
  border-radius: 0 0 10px 10px;
  padding: 10px 20px;
  z-index: 999;
}

.navbar-links.collapsed a {
  padding: 10px 0;
  text-align: left;
  color: white;
  display: block;
}

.navbar-links.collapsed a:hover {
  color: #CEAA7C;
}
.lswitch {
  display: block;
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: normal;
  margin-left: 10px;
  font-family: 'Crimson Text', serif;
  transition: color 0.3s ease;
}
.lswitch a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: 400;
  font-family: 'Crimson Text', serif;
  transition: color 0.3s ease;
}
/* Responsive styles */
@media screen and (max-width: 1024px) {
  .navbar-links {
    display: none;
  }
  .navbar-menu {
    display: block;
  }
  .hamburger {
    display: block;
  }

  .navbar {
    flex-direction: row;
  }
  .navbar-logo img {
    height: 40px;
    width: 40px;
  }
  .lswitch {
    display: none;
  }
}

/* Footer styles */
.footer {
background-color: #191715; /* Dark background */
color: white;
padding: 40px 5%;
}

.footer-container {
display: flex;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
}

/* Left Section: The Hotel & More */
.footer-left {
display: flex;
flex-direction: row;
width: 30%;
min-width: 250px;
gap: 40px;
}

/* Right Section: Newsletter */
.footer-right {
flex: 1; /* Takes remaining space */
max-width: 400px;
}

.footer h2 {
font-family: 'Crimson Text', serif;
font-weight: 400;
font-size: 20px;
margin-bottom: 10px;
}

.footer p {
font-size: 14px;
font-family: 'Work Sans', sans-serif;
font-weight: 300;
margin-bottom: 15px;
}

/* Footer Links */
.footer ul {
list-style: none;
padding: 0;
}

.footer ul li {
margin-bottom: 6px;
}

.footer ul li a {
color: white;
text-decoration: none;
font-size: 14px;
transition: color 0.3s;
font-family: 'Work Sans', sans-serif;
}

.footer ul li a:hover {
color: #CEAA7C;
}

/* Newsletter Form */
.footer form {
display: flex;
flex-direction: column;
gap: 10px;
}

.footer input {
padding: 10px;
font-family: 'Work Sans', sans-serif;
font-size: 14px;
color: white;
background-color: transparent;
border: 1px solid white;

}

.footer button {
text-transform: uppercase;
padding: 10px;
font-family: 'Crimson Text', serif;
font-size: 16px;
background-color: #d3a676;
color: white;
border: none;
cursor: pointer;
transition: background-color 0.3s;
}

.footer button:hover {
background-color: #ffcc99;
}

/* Footer Bottom */
.footer-line {
border: 0;
border-top: 1px solid #555;
margin-top: 30px;
}

.footer-bottom {
text-align: center;
font-family: 'Work Sans', serif;
font-weight: 300;
font-size: 14px;
color: #f5f5f5;
margin-top: 20px;
}

.footer-bottom a {
color: #fff;
text-decoration: underline;
margin: 0 10px;
font-size: 14px;
}

.footer-bottom a:hover {
color: #CEAA7C;
}

@media screen and (max-width: 768px) {
.footer-container {
    flex-direction: column;
    text-align: left;
    align-items: left;
}

.footer-left {
    flex-direction: column;
    width: 100%;
    gap: 20px;
    text-align: left;
}

.footer-right {
    margin-top: 10vh;
    width: 100%;
    max-width: 100%;
    text-align: left;
}

.footer-bottom {
    font-size: 12px;
}
}
.banner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5vh;
}

.banner img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
}


/* Spa Section Styling */
.spa-section {
display: flex;
align-items: stretch; /* Makes child elements the same height */
justify-content: center;
padding-bottom: 0px;
width: 70%; /* Reducing width by 30% */
  margin: 0 auto; /* Centering the section */
padding-left: 40px;
padding-right: 40px;

}

.spa-image {
flex: 1;
max-width: 50%;
display: flex;
}

.spa-image img {
width: 100%;
 /* Ensures the image takes the full height */
object-fit: cover; /* Ensures the image covers the area without distortion */
object-position: top;
}

.spa-content {
font-family: 'Crimson Text', serif;
flex: 1;
max-width: 50%;
background-color: #fff; /* Background changed to white */
display: flex;
flex-direction: column;
justify-content: center; /* Centers text vertically */
padding: 30px;
min-height: 100%; /* Ensures content stretches */
}

.spa-content p {
font-weight: 300;
font-size: 16px;
}

.spa-content a {
font-family: 'Crimson Text', serif;
font-weight: 300;
color: #000;
}
.spa-content a:hover{
color: #CEAA7C;
}
/* Responsive Design */

@media screen and (max-width: 1024px) {
.spa-section {
  flex-direction: column;
  padding-left: 30px;
  padding-right: 30px;
}

.spa-image {
  max-width: 100%;
  height: 50vh; /* Ensures a fixed height for balance */
}

.spa-content {
  max-width: 100%;
  min-height: 50vh; /* Matches image height */
}

.spa-content p {
  font-weight: 300;
  font-size: 16px;
}

.spa-content h2 {
  font-size: 26px;
}
}
@media screen and (max-width: 768px) {
.spa-section {
  flex-direction: column;
  padding-left: 20px;
  padding-right: 20x;
  width: 100%; /* Reducing width by 30% */
  margin: 0 auto; /* Centering the section */
  
}

.spa-image {
  max-width: 100%;
  height: 50vh; /* Ensures a fixed height for balance */
}

.spa-content {
  max-width: 100%;
  min-height: 50vh; /* Matches image height */
}
.spa-content p {
  font-weight: 300;
  font-size: 16px;
}
.spa-content h2 {
  font-size: 26px;
}
}

.faq-section {
text-align: center;
margin-top: 10vh;
margin-bottom: 10vh;
}
.faq-section img{
height: 100px;
}